home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 27.zip / BS1 part 27 / FhspreadV1.6.2.adf / FHS.DOC < prev    next >
Text File  |  1993-04-05  |  4KB  |  95 lines

  1.                 FHSPREAD DOCUMENTATION:
  2.  
  3.         This program is publicdomain. You can spread this program
  4.         as long as you don't ask more money for it than the price
  5.         of a floppy. This document must also always be included.
  6.  
  7.         This program is written in GFABASIC and compiled with it's
  8.         GFA-compiler.
  9.         The reason whi I wrote this program is, that I just needed
  10.         a good spreadsheet.
  11.  
  12.  
  13.         If you've found some bugs during using it, please let me
  14.         know! And send youre bug-report to:
  15.  
  16.         Frank Hartog
  17.         Indischestraat 45
  18.         2022 VP  Haarlem
  19.         The Netherlands
  20.  
  21.         If you want the latest update, send me an envelope which
  22.         must include the next two (or three) things:
  23.         -Another envelope with youre adress and enough stamps.
  24.         -An EMPTY floppy.
  25.         (- And maybe a little fee, please? )
  26.         Than I will send you the latest update of FHSPREAD as soon
  27.         as possible.
  28.         If you have included a fee, i will let you know when a new
  29.         version is available.
  30.  
  31.  
  32.         At the moment I am trying to make a manual for this program.
  33.         So for now I shall only include some major functions:
  34.  
  35.         SIN(val)      = Calculates the sinus in radials.
  36.         ASIN(val)     = Calculates the arcsinus in radials.
  37.         COS(val)      = Calculates the cosinus in radials.
  38.         ACOS(val)     = Calculates the arccosinus in radials.
  39.         TAN(val)      = Calculates the tangent in radials.
  40.         ATN(val)      = Calculates the arctangent in radials.
  41.  
  42.         RAD(val)      = Changes degrees to radials.
  43.         DEG(val)      = Changes radials to radials.
  44.  
  45.         ROUND(val,n)  = Will round a numeric value to n digits.
  46.         MOD(val,n)    = Will give the modulo n of val.
  47.  
  48.         RANDOM(val)   = Wil generate an random value between zero and
  49.                         val.
  50.         EXP(val)      = Calculates e^val.
  51.         LOG(val)      = Calculates the naturallogaritme of val.
  52.         LOG10(val)    = Calculates the (LOG(val)/LOG(10)).
  53.  
  54.         AVG(list)     = Will calculate the average of al values of the list.
  55.         'example  (AVG(A1..B3))'
  56.         SUM(list)     = Will sum al values of the list.
  57.         'example  (SUM(A1..B3))'
  58.         COUNT(list)   = Will count the number of used cells in the list.
  59.         'example  (COUNT(A1..B3))'
  60.  
  61.         There are also three constante values:
  62.  
  63.         PI            = Will return the value of 3.14....etc.
  64.         { FALSE         = Will return a '0'.
  65.           TRUE          = Will return a '-1'.} these will be used in
  66.         future versions.
  67.  
  68.  
  69.         If you want to put a calculation in a cel, you must start with
  70.         typing a '('.
  71.         If you want to put a numeric value in a cel, you only have to enter
  72.         the numeric value.
  73.  
  74.         The program does not use priorities between +,- and *,/. So you
  75.         have to use the ()-things a lot.
  76.  
  77.         If you want to put some text in a cel, just start typing it.
  78.  
  79.         You can leave a cel by hitting 'ENTER' or by pressing one of
  80.         the arrow keys or 'click' on another cel with the mouse.
  81.  
  82.         For almost every menu-item there is an keyboard equivalent,
  83.         what they are you can see if you select a menu-item with your
  84.         mouse.
  85.  
  86.         There are three variations:
  87.  
  88.         Amiga sign + character means:  right amiga button + character
  89.         A + character1 - character2   means:  First press both
  90.         Alt + character1  then press character2.
  91.         C + character1 - character2   means:  First press both
  92.         Ctrl + character1  then press character2.
  93.  
  94.  
  95.         Use F10 (function key nr. 10) to recalc the spreadsheet.